home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol A-4 / (Vol A-4) Vol. A4.iso / Games / bratz-estilista.swf / scripts / DefineSprite_844 / frame_1 / DoAction.as
Text File  |  2008-03-17  |  391b  |  26 lines

  1. function next()
  2. {
  3.    index++;
  4.    if(index >= items.length)
  5.    {
  6.       index = 0;
  7.    }
  8.    goto();
  9. }
  10. function prev()
  11. {
  12.    index--;
  13.    if(index < 0)
  14.    {
  15.       index = items.length - 1;
  16.    }
  17.    goto();
  18. }
  19. function goto()
  20. {
  21.    _parent.BratzLined[item][item].gotoAndStop(items[index]);
  22. }
  23. var index = 0;
  24. type.autoSize = true;
  25. ra._x = type._x + type._width + ra._width + 5;
  26.